home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / digests / infoham / 940966.txt < prev    next >
Internet Message Format  |  1994-11-13  |  13KB

  1. Date: Sat, 27 Aug 94 04:30:05 PDT
  2. From: Info-Hams Mailing List and Newsgroup <info-hams@ucsd.edu>
  3. Errors-To: Info-Hams-Errors@UCSD.Edu
  4. Reply-To: Info-Hams@UCSD.Edu
  5. Precedence: Bulk
  6. Subject: Info-Hams Digest V94 #966
  7. To: Info-Hams
  8.  
  9.  
  10. Info-Hams Digest            Sat, 27 Aug 94       Volume 94 : Issue  966
  11.  
  12. Today's Topics:
  13.      [Q] On how to program Cardinal sound card, article. where ?
  14.                       Converting Grid to Lat-Lon
  15.                        Handies and NiMH accus?
  16.                        Internet Packet Gateway
  17.                   Ragchewing conversational protocol
  18.  
  19. Send Replies or notes for publication to: <Info-Hams@UCSD.Edu>
  20. Send subscription requests to: <Info-Hams-REQUEST@UCSD.Edu>
  21. Problems you can't solve otherwise to brian@ucsd.edu.
  22.  
  23. Archives of past issues of the Info-Hams Digest are available 
  24. (by FTP only) from UCSD.Edu in directory "mailarchives/info-hams".
  25.  
  26. We trust that readers are intelligent enough to realize that all text
  27. herein consists of personal comments and does not represent the official
  28. policies or positions of any party.  Your mileage may vary.  So there.
  29. ----------------------------------------------------------------------
  30.  
  31. Date: Fri, 26 Aug 1994 14:50:42 GMT
  32. From: news.cerf.net!nntp-server.caltech.edu!netline-fddi.jpl.nasa.gov!elroy.jpl.nasa.gov!swrinde!howland.reston.ans.net!torn!newshub.ccs.yorku.ca!newshub.ariel.cs.yorku.ca!cs902034@ihnp4.ucsd.edu
  33. Subject: [Q] On how to program Cardinal sound card, article. where ?
  34. To: info-hams@ucsd.edu
  35.  
  36. Hello world,
  37.  
  38. Sometime ago, someone called Johan Forrer wrote an article in QEX , AUGUST 1994
  39. issue on how program Cardinal sound card...
  40.  
  41. Right now, I have the SDK for that article, but I don't know where I can find
  42. a copy of that article.
  43.  
  44. Can anyone help me out what is the long name of QEX and what is the publisher ?
  45. Or, can anyone send me a copy of that article thru mail or FAX ?
  46.  
  47. Any help will be very appreciated !!!
  48.  
  49. Arthur Chow
  50. Fax : (416)292-2364
  51. Office tel : (416)292-0038
  52.  
  53. ------------------------------
  54.  
  55. Date: 25 Aug 1994 13:00:33 -0700
  56. From: nntp.crl.com!crl4.crl.com!not-for-mail@decwrl.dec.com
  57. Subject: Converting Grid to Lat-Lon
  58. To: info-hams@ucsd.edu
  59.  
  60. In article <9408250942.ZM25231@SALCIUS2>,
  61. Wayne_Estes@csg.mot.com (Wayne_Estes) wrote:
  62.  
  63. > I'm looking for a DOS or Windows program that can:
  64. >     A. Convert 6-digit Maidenhead grid  to  Latitude/Longitude.
  65. >     B. Convert Latitude/Longitude  to  6-digit Maidenhead grid.
  66.  
  67. Wayne -
  68.  
  69. The attached Quick BASIC program will perform the functions you
  70. mentioned above.  Sorry, I don't know who was the original author, so
  71. can't give appropriate credits.
  72.  
  73. 73 de Lou / N5SGL
  74.                    --------------------------
  75.  
  76.     'Grid Square <-> latitude/longitude conversion
  77.     '
  78. START:
  79.     CLS : COLOR 0, 7: PRINT "GRID SQUARE LOCATOR": COLOR 7, 0: PRINT
  80.     PRINT "Which do you want to convert FROM?": PRINT
  81.     COLOR 0, 7: PRINT "L"; : COLOR 7, 0: PRINT "at/Lon   ";
  82.     COLOR 0, 7: PRINT "G"; : COLOR 7, 0: PRINT "rid   ";
  83.     COLOR 0, 7: PRINT "Q"; : COLOR 7, 0: PRINT "uit": PRINT
  84.     
  85. RPT1:
  86.     a$ = ""
  87.     DO
  88.         a$ = INKEY$
  89.     LOOP UNTIL a$ <> ""
  90.     IF UCASE$(a$) = "Q" THEN END
  91.     IF UCASE$(a$) = "L" THEN GOTO LL
  92.     IF UCASE$(a$) = "G" THEN GOTO GRID
  93.     GOTO RPT1
  94.     
  95. LL:
  96.     CLEAR : e9 = .000001
  97.     CLS : COLOR 0, 7: PRINT "LAT/LON": COLOR 7, 0: PRINT
  98.     PRINT "Enter SOUTH latitude and EAST longitude as NEGATIVE numbers."
  99.     PRINT
  100.     INPUT "LAT  (DD.MM)"; l
  101.     IF l < -90 OR l > 90 THEN RUN
  102.     INPUT "LON (DDD.MM)"; o
  103.     IF o < -180 OR o > 180 THEN RUN
  104.     os = SGN(o): o = ABS(o): ls = SGN(l): l = ABS(l)
  105.     la = (INT(l) + (l - INT(l)) / .6) * ls
  106.     lo = (INT(o) + (o - INT(o)) / .6) * os
  107.     IF lo < 0 THEN lo = lo + 360
  108.     w3 = 180 - lo: IF w3 < 0 THEN w3 = w3 + 360
  109.     w1 = INT(w3 / 20 + e9)
  110.     w2 = INT((w3 - 20 * w1) / 2 + e9) + 48: w1 = w1 + 65
  111.     w3 = INT(24 * (w3 / 2 - INT(w3 / 2)) + e9) + 65
  112.     l1 = INT((la + 90) / 10 + e9): l2 = INT(la + 90 + e9 - 10 * l1)
  113.     l3 = INT((la + 90 - 10 * l1 - l2) * 24 + e9)
  114.     l1 = l1 + 65: l2 = l2 + 48: l3 = l3 + 65
  115.     g$ = CHR$(w1) + CHR$(l1) + CHR$(w2) + CHR$(l2) + CHR$(w3) + CHR$(l3)
  116.     PRINT : PRINT "Grid square = "; UCASE$(g$)
  117.     LOCATE 24, 1: PRINT "< Press a key to continue >";
  118.     a$ = "": DO: a$ = INKEY$: LOOP UNTIL a$ <> "": GOTO START
  119.     
  120. GRID:
  121.     CLEAR : e9 = .000001
  122.     CLS : COLOR 0, 7: PRINT "GRID SQUARE": COLOR 7, 0: PRINT
  123.     PRINT "Enter 2-, 4-, or 6-character grid square."
  124.     PRINT "Short ones will be optimized to center of square.": PRINT
  125.     INPUT "Grid square"; g$
  126.     g$ = UCASE$(g$)
  127.     l3 = LEN(g$): IF l3 < 2 OR l3 > 6 THEN RUN
  128.     IF l3 = 1 OR l3 = 3 OR l3 = 5 THEN RUN
  129.     SELECT CASE l3
  130.         CASE 2
  131.             g$ = g$ + "55LL"
  132.         CASE 4
  133.             g$ = g$ + "LL"
  134.     END SELECT
  135.     LOCATE CSRLIN - 1, 1: PRINT "Grid square = "; g$; "      "
  136.     RESTORE
  137.     FOR x = 1 TO 6
  138.         READ y$, z$
  139.         t$ = MID$(g$, x, 1): IF t$ < y$ OR t$ > z$ THEN RUN
  140.     NEXT x
  141.     DATA A,R,A,S,0,9,0,9,A,X,A,X
  142.     w1 = ASC(LEFT$(g$, 1)) - 65
  143.     w2 = ASC(MID$(g$, 3, 1)) - 48
  144.     w3 = ASC(MID$(g$, 5, 1)) - 65
  145.     lo = 180 - 20 * w1 - 2 * w2 - w3 / 12 - 1 / 24
  146.     IF lo < 0 THEN lo = lo + 360
  147.     l1 = ASC(MID$(g$, 2, 1)) - 65
  148.     l2 = ASC(MID$(g$, 4, 1)) - 48
  149.     l3 = ASC(RIGHT$(g$, 1)) - 65
  150.     la = -90 + 10 * l1 + l2 + l3 / 24 + 1 / 48
  151.     IF lo > 180 THEN lo = lo - 360
  152.     ls = SGN(la): la = ABS(la)
  153.     l = (INT(la) + INT((la - INT(la)) * 60) / 100) * ls
  154.     os = SGN(lo): lo = ABS(lo)
  155.     o = (INT(lo) + INT((lo - INT(lo)) * 60) / 100) * os
  156.     PRINT
  157.     PRINT "LAT   (DD.MM) ="; l
  158.     PRINT "LON  (DDD.MM) ="; o
  159.     PRINT
  160.     PRINT "(SOUTH latitude and EAST longitude shown as negative numbers.)"
  161.     LOCATE 24, 1: PRINT "< Press a key to continue >";
  162.     a$ = "": DO: a$ = INKEY$: LOOP UNTIL a$ <> ""
  163.     GOTO START
  164.  
  165. ------------------------------
  166.  
  167. Date: 25 Aug 1994 19:18:40 GMT
  168. From: ihnp4.ucsd.edu!swrinde!cs.utexas.edu!usc!sdd.hp.com!col.hp.com!fc.hp.com!news.lvld.hp.com!scott@network.ucsd.edu
  169. Subject: Handies and NiMH accus?
  170. To: info-hams@ucsd.edu
  171.  
  172. Detlef Marxsen (dema@astrax.hanse.de) wrote:
  173. : Hello *,
  174.  
  175. : I'm about to buy a 2m / 70 cm handy.
  176. : I would like to know if there are NiMH accus available for handies.
  177. : Do all/few/no brands offer that kind of accus?
  178. : I hate the memory effect of NiCd accus ...
  179.  
  180. Are you sure you really want NiMH's?  My experience with them in a
  181. Toshiba Laptop have been extremely disappointing.  You may hear of
  182. reduced shelf life with them.  *Extremely* reduced is more like it.  Within
  183. 24 hours, mine seem to be down at least 50%, and after several days,
  184. they're essentially flat.  They also seem even more susceptable to heat
  185. than NiCd.  A couple of hours in the back seat of my car (in a carrier
  186. bag) on a warm day, and both of my recently charged packs were stone dead.
  187.  
  188. Note:  these are, obviously, just impressions based on about 8 months
  189. of usage with two packs.  I've not made any attempt to scientifically
  190. measure the differences.  I do know that given my use model for my HT,
  191. I'd be *extremely* reluctant to go to NiMH technology batteries.
  192. Environmentally friendly they may be, but that still doesn't make them
  193. useful.
  194.  
  195.  
  196. Scott Turner  KG0MR  scott@hpisla.LVLD.HP.COM
  197.  
  198. ------------------------------
  199.  
  200. Date: 26 Aug 1994 15:56:54 GMT
  201. From: ihnp4.ucsd.edu!dog.ee.lbl.gov!agate!darkstar.UCSC.EDU!news.hal.COM!usenet@network.ucsd.edu
  202. Subject: Internet Packet Gateway
  203. To: info-hams@ucsd.edu
  204.  
  205. In article 0100000@rain.org, ojthach@rain.ORG (Casa de Piedra) writes:
  206. >There is also a internet <-> packet gateway at wb7tpy and n0ary.  To 
  207. >obtain info on using the gateways.  For Wb7tpy, send a message to 
  208. >david@stat.com.  For n0ary, send a message to bob@arasmith.com.   Hope 
  209. >this helps
  210.  
  211. Oops, that would fill up my mailbox :(
  212.  
  213. For information on the N0ARY gateway send an empty message to:
  214.  
  215.     gateway_info@arasmith.com
  216.  
  217. and to get information on the N6QMY gateway send your message to:
  218.  
  219.     gateway_info@lbc.com
  220.  
  221. same bbs code, same services.
  222.  
  223.  
  224. ---
  225. Bob Arasmith
  226.    bob@hal.com (work)
  227.    bob@arasmith.com (home)
  228.    n0ary@n0ary.#nocal.ca.usa.na (packet)
  229.  
  230. ------------------------------
  231.  
  232. Date: Sat, 27 Aug 1994 05:08:51 GMT
  233. From: vigra.com!news.vigra.com!steve@network.ucsd.edu
  234. Subject: Ragchewing conversational protocol
  235. To: info-hams@ucsd.edu
  236.  
  237. -=> On 25 Aug 1994 17:35:12 GMT, papo@briscas.gamekeeper.bellcore.com (25383-anaya) said:
  238.  
  239. > Ragchewing conversational protocol.. Hmmm.. I'm having problems with
  240. > ragchewing myself so I'm going to write a couple of things regarding
  241. > this subject [...]
  242.  
  243. Well well.. looks like I'm not alone!  I've had my ticket for two
  244. months or so, and I'm starting to get frustrated with the constant
  245. stream of ham-radio talk on 2m and 440.  Sometimes it seems like it's
  246. all talk about repeaters, ham gear, FCC this-and-than, and Nets..  I
  247. myself simply can't imagine getting excited about QSL cards and
  248. contests. :-)  (To each their own, I guess.)
  249.  
  250. > I am having a hard time being understood at the other end and I do
  251. > not know if it is the rig or if it is me or what's the problem.
  252.  
  253. Have someone nearby check out the rig, or swap with someone for a
  254. while.  It sounds silly, but make sure you're using the right angle
  255. and distance for the microphone.  This can make a big difference.
  256.  
  257. > Anyway, I'm starting to get dissapointed with VHF ragchewing, I've
  258. > seen better opportunities for conversation in a bar full of couples.
  259.  
  260. Heh heh..  yup!
  261.  
  262. > Well, maybe because people do not know what to say.  It is hard to
  263. > sit down and talk, specially if you are introvert.  
  264.  
  265. Yep.  As an geek and introvert, I have to agree. :-)
  266.  
  267. I think I've narrowed it down to a couple of hangups, for me anyway:
  268.  
  269. 1) You don't know anything about the person you are talking to.  Even
  270.    when you meat someone in a bar, you can look at them and tell if they
  271.    are neat and buisnesslike, grungy, friendly and smily, sour, or
  272.    what.  Radio gives you none of that.  You're just a voice, with no 
  273.    T-Shirt logo hints for favorite interests and such.
  274.  
  275.    I think that's why conversation always seems to revert to
  276.    ham-radio.  It's the only thing you know you have in common.
  277.  
  278. 2) It's half-duplex!  This is hard to explain, but if you make some
  279.    joke on the air, you have no idea if anyone even chuckled, or groaned.
  280.    Telephone gives you this.  Same for the "ack-grunts" that let you know
  281.    the other person is still there and following along, and maybe agrees.
  282.  
  283.    Another problem is that you can't interject like you're used to in
  284.    full-duplex.  You can't just wait for the other person to subtly say
  285.    "Hmm" or "Yes, but".  You just say your piece, and then step down.
  286.    It's almost subconcious, but real conversation isn't at all like this.
  287.    Often you talk until they have something to say.  You can also stop
  288.    talking when they don't look interested. :)
  289.  
  290. 3) There is too much "clubness" to local air chatter.  It's just
  291.    loaded thick with jargon and jive like QSL, "monitoring", XYL, and 
  292.    such.. That's normal for any hobby, I guess, but sometimes all the 
  293.    protocol really gets in the way of a good talk.  (Ask me in a few
  294.    years, and see if I've QSY'd :-)
  295.  
  296. 4) There really are some folks out there that are much more interested
  297.    in excersizing the RF spectrum than having a stimulating
  298.    converstion. They are always testing this or that feature, or
  299.    talking on three bands at once, tweaking the antenna, checking
  300.    their signal, or accessing every feature of the repeater.  I'm
  301.    hoping these people are just few and verbose.
  302.  
  303. > Many of those loner and geeks are introverts, they might feel more
  304. > comfortable doing CW, packet or RTTY than phone.  
  305.  
  306. Naw.. packet conversation is just as unstimulating, at least what I've
  307. seen.  It's all ham-chat.  
  308.  
  309. Just imagine a Usenet with *only* the news.software.* hierarchy, and
  310. you have a parallel. :-)
  311.  
  312.  
  313.  
  314. What to do about it??  Well.... it's just like a telephone, I guess.
  315. A radio is only as interesting as the person on the other end.  It's
  316. my job to find cool people to talk to, and seek out meaningful
  317. conversation.
  318.  
  319. Try finding someone you know well that is also a ham, even if they
  320. aren't on the radio any more.  Lend them an HT or get them to dig
  321. theirs up.  Somehow, those conversations are always just fine.  I
  322. guess this just shows it's easier to sustain an enjoyable conversation
  323. with someone you know than someone you don't.
  324.  
  325. -Steve
  326.   still learning the ropes..
  327.  
  328.  
  329. Steve Haehnichen                 Vigra, Inc.  San Diego, CA
  330. steve@vigra.com                  (619) 597-7080 x116   Fax: (619) 597-7094
  331.  
  332. ------------------------------
  333.  
  334. End of Info-Hams Digest V94 #966
  335. ******************************
  336.